home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / apps / xconf / ConfList.h < prev    next >
C/C++ Source or Header  |  1994-08-01  |  2KB  |  86 lines

  1. /*
  2.  * Copyright 1993, 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17. //
  18. //  Class:        ConfList
  19. //  Base Classes:       none
  20. //
  21. //  Class:        GroupList
  22. //  Base Classes:       ConfList
  23. //
  24. //  Author:             Jesse Rendleman (jesse@sgi.com)
  25. //
  26.  
  27. // X11/motif includes
  28. #include <Xm/Xm.h>
  29.  
  30.  
  31. class ConfList {
  32.   private:
  33.   protected:
  34.     int _numItems;
  35.     char _item[30];
  36.     Widget _dWidget;
  37.     Widget _listWidget;
  38.     static void okCB(Widget, XtPointer, XtPointer);
  39.     static void cancelCB(Widget, XtPointer, XtPointer);
  40.  
  41.   public:
  42.     ConfList();
  43.     ~ConfList();
  44.     virtual void init(Widget, char*);
  45.     virtual void open();
  46.     virtual void clear();
  47.     virtual Boolean add(char* item, Boolean select=FALSE);
  48.     virtual Boolean select(char* item);
  49.     virtual Boolean remove(char* item);
  50.     virtual Boolean find(char* item);
  51.     virtual Boolean findSelected(char* item);
  52. };
  53.  
  54.  
  55. extern class ConfDoc;
  56.  
  57. class GroupList : public ConfList {
  58.   private:
  59.   protected:
  60.     ConfDoc* _confdoc;
  61.     static void okCB(Widget, XtPointer, XtPointer);
  62.  
  63.   public:
  64.     GroupList();
  65.     ~GroupList();
  66.     virtual void init(Widget, char*, ConfDoc* cd);
  67. };
  68.  
  69.  
  70. class PrivateList : public ConfList {
  71.   private:
  72.   protected:
  73.     ConfDoc* _confdoc;
  74.     Widget _privateText;
  75.     char _user[30];
  76.     static void closeCB(Widget, XtPointer, XtPointer);
  77.     static void sendCB(Widget, XtPointer, XtPointer);
  78.  
  79.   public:
  80.     PrivateList();
  81.     ~PrivateList();
  82.     virtual void init(Widget, char*, char*, ConfDoc* cd);
  83. };
  84.  
  85.  
  86.